To use the host name of our machine instead of localhost,we can add a host name in /etc/hosts on Linux and MacOSX and C:\Windows\System32\drivers\etc on Windows
127.0.0.1 www.webgoat.local
Therefore our machine will resolve localhost (127.0.0.1) as www.webgoat.local
Each client request and server response has three parts:
HTTP Transaction by Client:
GET /index.html?param=value HTTP/1.0
It has URL parameters: /index.html?param=value
These parameters will be available in the web access logs.
User-Agent: Mozilla/4.06 Accept: image/gif,image/jpeg, /
User-Agent is the agent used to acces the server.Here it is Mozilla firefox browser
Text in colour is user supplied data.